home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 2000
/
MacHack 2000.toast
/
pc
/
The Hacks
/
Softshoe
/
Lisa's Mac Parts
/
Files
/
Errors
/
VolumeError.h
< prev
next >
Wrap
Text File
|
2000-06-23
|
321b
|
25 lines
// VolumeError.h
#ifndef VolumeError_h
#define VolumeError_h
#ifndef OSError_h
#include "OSError.h"
#endif
class VolumeError: public OSError
{
public:
VolumeError( OSErr error )
: OSError( error )
{}
};
inline void ThrowVolumeError( OSErr e )
{
if ( e != noErr )
throw VolumeError(e);
}
#endif